Circle

Mobile & Tablet Responsive Template


How do I install the item?

Copy and paste all the items in the code folder to your server to your desired location. 

What are those i class"fa " things?

That is Font Awesome, the amazing icons we used for this item you can learn more about them and find a cheatsheet on how to use them here http://fortawesome.github.io/Font-Awesome/icons/

How do I change the contact form information?

There is only one PHP file in the item, please open that item and replace the email address with yours. 

How do I make the login page / sign in page / calendar page to work? 

Please remember that this is a site template and is not connected to any CMS or any databases, so these features are mearly template designs, they are HTML and CSS and need to be connected to a back-end to work. 

 

<div class="all-elements">
    <div class="header">
        <!--Check Header Chapter-->
    </div>
    <div class="header-clear"></div>
    <ul class="top-menu">
        <!-- This is the dropdown menu from the top. Check Top Menu Chapter-->
    </ul>
    <a href="#" class="show-big-menu"><i class="fa fa-navicon bg-red2"></i></a>
    <!--The above anchor shows the top menu-->
    
    <div class="footer-menu">
        <!-- This is the right ball menu, check Ball Menu Chapter-->
    </div>
    <div class="menu-background"><!--This is the overlay when clicking the menus-->

    <div class="content">
        <!-- Add your content and container classes here --> 
    </div>
</div>

 

The all-content class houses all elements and has a few overflow properties added to it to make it keep everything in place on mobiles. 

The class="header" is a fixed class and requires a class="header-clear" after it to add a spacing so elements don't got underneeth it

The class="show-big-menu" is the dropdown menu that appears when you tap the left hand ball 

The class="footer-menu" is the menu on the right that houses the balls 

The fullscreen slider is covered in our second documentation. You can check it out there.

Circle Slider

<div class="circle-slider half-bottom">
    <div>
        <img src="images/slider/1.jpg" alt="img">
        <h1>Welcome to Cricle</h1>
        <em class="text-red1 half-bottom">A creative, mobile and tablet template!</em>
    </div>        
</div>

Line 1 is the slider wrapper and function creator

Lines 2, 3, 4, 5, 6 is a slide element. duplicating this will create a new slide

Line 3 is the image

Line 4 is the title

Line 5 is the description.

Line 6 closes the slide 

Line 7 closes the slider

Regular Slider

<div class="slider-container full-bottom">
    <div class="homepage-slider" data-snap-ignore="true">                
        <div>
            <div class="overlay"></div>
            <div class="homepage-slider-caption homepage-left-caption">
                <h3>Swipe me!</h3>
                <p>Hope you enjoy our latest item!</p>
            </div>
            <img src="images/pictures/3.jpg" class="responsive-image" alt="img">
        </div>
    </div>
</div>

Line 1 is the slider wrapper

Line 2 is the slider function wrapper 

Line 3,4,5,6,7,8,9,10 is a single slide. Duplicate it to create more  slides

Line 4 is the overlay. This darkens the background

Line 5 is the slider caption wrapper

LIne 6 is the heading

Line 7 is the text

Line 8 closes the caption wrapper

Line 9 is the image

Line 10 closes the slide

Line 11 closes the slider function wrapper

Line 12 closes the enclosing slider wrapper. 

 

 

 

 

 

 

The landing page with thumbnails uses the same structure as everything else except for the fact that it does not have the regular ball menus ( and these cannot be added to it ) 

The landing thumbnails page has the all elements class, the header at the top, the ball menu, the footer and the share bottom. 

ATTENTION

On the landing page with thhumbnails, the BODY must have the class "circle-homepage" 

Thumbnail Menu 

<ul>
    <li>
        <a href="index.html">
            <i class="fa fa-home bg-red1"></i>
            <em>Home</em>
        </a>
    </li>        

    <li>
        <a href="list-features.html">
            <i class="fa fa-cog bg-green2"></i>
            <em>Features</em>
        </a>
    </li>        

    <li>
        <a href="list-gallery.html">
            <i class="fa fa-camera bg-blue2"></i>
            <em>Galleries</em>
        </a>
    </li>
</ul>

The UL houses LI classes. Duplicate the LI's to create more menus. We strongly recommend not using more than 9 items as this will keep it very elegant on mobiles.  

 

Each li class has the following

An anchor - the menu item. 

An icon class - using font awesome

An em class - The description 

 

 

 

The fixed footer menu page is basically the same page and has the same structure as all other indexes, except, this page does not support the bottom 2 balls.

The fixed menu supports a maximum of 9 icons. 5 will be visible on mobiles, and another 4 will show on tablets. 

Let's further explain 

    <ul class="footer-controls five-controls">
        <li><a class="active-home-tab"   href="index5.html">        <i class="bg-red2 fa fa-home"></i></a></li>
        <li><a class="inactive-home-tab" href="list-features.html"> <i class="bg-magenta2 fa fa-cog"></i></a></li>
        <li><a class="inactive-home-tab" href="list-gallery.html">  <i class="bg-green2 fa fa-camera"></i></a></li>
        <li><a class="inactive-home-tab" href="list-portfolio.html">  <i class="bg-teal2 fa fa-picture-o"></i></a></li>
        <li><a class="inactive-home-tab" href="list-contact.html">  <i class="bg-blue2 fa fa-envelope-o"></i></a></li>
        <li class="tablet-link"><a href="#">       <i class="facebook-color fa fa-facebook"></i></a></li>
        <li class="tablet-link"><a href="#">       <i class="twitter-color fa fa-twitter"></i></a></li>
        <li class="tablet-link"><a href="#">       <i class="google-color fa fa-google-plus"></i></a></li>
        <li class="tablet-link"><a href="#">       <i class="bg-red2 fa fa-link"></i></a></li>
    </ul>

 

The main ul class, footer-controls has an adjecent class called five-controls. You can select between five-controls, four-controls, or three-controls. Keep in mind, the number of controls wll only be affected on mobile devices! Tablets will show another 4 balls on the right. Keeping only 3, 4, or even 5 would completely wreck the design of the footer menu. 

If you select three-controls or four-controls, remove any element you wish except for the tablet-links. 

To make an item active, give it the class active-home-tab, and to make it inactive, give it the class inactive-home-tab. Giving it the active-home-tab class will make the ball bigger. 

The top menu, or the left ball activated menu will show a modal menu with dropdowns. This is very efficient in case you have many menu elements and can't fit them all on a small screen using the right ball. 

Here's how the top-menu works. 

<ul class="top-menu">
    <li><a href="contact.html"><i class="fa fa-envelope bg-red1"></i>Contact<i class="fa fa-circle"></i></a></li>  
    <li class="has-submenu">
        <a class="deploy-submenu" href="#"><i class="fa fa-cog bg-blue2"></i>Homepages<i class="fa fa-plus"></i></a>
        <ul class="submenu">
            <li><a href="index.html"><i class="fa fa-angle-right"></i>Circle Slider<i class="fa fa-circle"></i></a></li>
            <li><a href="index2.html"><i class="fa fa-angle-right"></i>Regular Slider<i class="fa fa-circle"></i></a></li>
            <li><a href="index3.html"><i class="fa fa-angle-right"></i>Fullscreen Slider<i class="fa fa-circle"></i></a></li>
            <li><a href="index4.html"><i class="fa fa-angle-right"></i>Landing Page<i class="fa fa-circle"></i></a></li>
            <li><a href="index5.html"><i class="fa fa-angle-right"></i>Sticky Footer<i class="fa fa-circle"></i></a></li>
        </ul>
    </li>
</ul>

 

Line 1 is the top-menu wrapper.

Line 2 is a simple, inactive menu. Taps and goes where its' selected to go. Inside of it, there's an I class which is a font-awesome class, a text, and another font-awesome class which is the ball on the right 

LIne 3 is the submenu wrapper

Line 4 is the submenu wrapper deploy button.Tapping this will expand the menu

Line 5 is the submenu elements wrapper. Inside this we have all our submenu elements

Line 6, 7, 8, 9, 10 are submenu elements. 

Line 11 closes the submenu element wrapper

Line 12 closes the submenu wrapper

Line 13 closes the top-menu wrapper 

 

To create an active, simple menu:

Give any simple menu list the following class <li class="active-menu">

To create an active submenu item:

Submenu items are exactly the same as simple menus, so giving any submenu item the class active-menu will make it active. 

To create an active submenu, expanded dropdown menu

This may seem complicated, but it's not at all. 

Give the main anchor that deploys the submenu the class "deploy-submenu active-submenu" and this will change the plus icon to a red x icon

Give the main ul submenu the class "submenu show-submenu" and this will make the drodown menu expand. 

And to create an active submenu item, simply use the advice above for submenu items and simple menus. Give any submenu element the class "active-menu" 

Attention: 

This menu supports a maximum of 6 items. DO NOT add more as the current standard for small screens in the world is 540 pixels high! Using more than 6 items will make the invisible to small screen devices! 

<div class="footer-menu">
    <a href="#" class="footer-menu-open">
        <i class="fa fa-ellipsis-v bg-red2"></i>
    </a>        

    <a href="#" class="footer-menu-close">
        <em href="#" class="footer-menu-open-text">Navigation</em>
        <i class="fa fa-times bg-red2"></i>
    </a>        

    <a href="list-features.html" class="footer-menu-item fm-1">
        <em>Features</em>
        <i class="fa fa-cog bg-red1"></i>
    </a>

    <a href="list-gallery.html" class="footer-menu-item fm-2">
        <em>Gallery</em>
        <i class="fa fa-camera bg-teal1"></i>
    </a>              

    <a href="list-portfolio.html" class="footer-menu-item fm-3">
        <em>Portfolio</em>
        <i class="fa fa-picture-o bg-teal2"></i>
    </a>        

    <a href="list-features.html" class="footer-menu-item fm-4">
        <em>App Styled</em>
        <i class="fa fa-mobile bg-blue1"></i>
    </a>        

    <a href="contact.html" class="footer-menu-item fm-5">
        <em>Contact Us</em>
        <i class="fa fa-envelope-o bg-blue2"></i>
    </a>
</div>
<div class="menu-background"></div>

 

Line 1 is the footer-menu wrapper. This houses all the ball menus

Line 2, 3, 4 is the ball that opens the menu. Please do not modify this except for the color. The class footer-menu-open must stay untouched

Line 6 7 8 9 is the menu closing ball. This only appears after the menu is deployed. 

General explnation of all other ball elements

Line 11 is the features ball. It has an anchor and the class fm-1 for positioning. 

Line 12 is the text of that features ball

Line 13 is the icon for the feature ball 

Line 14 closes the feature ball. 

Each element from here on is basically the same, with the difference that the background can be changed to the background mentions in the the previous chapters and the fact that each ball must have the fm-1, fm-2 and so on classes up to fm-5.  The fm-6 class is not programmed. Please do not use more than 7 balls as these will not be visible on smaller devices. 

 

 

 

 

 

 

 

            <div class="container">
                <a href="#" class="next-staff"></a>
                <a href="#" class="prev-staff"></a>
                <div class="staff-slider" data-snap-ignore="true">

                    <div><!--Duplicate Me-->
                        <div class="staff-item">
                            <img src="images/pictures/1s.jpg" alt="img">
                            <h4>John Doe</h4>
                            <em>Web Designer</em>
                            <strong>We love quotes, and sometimes it's</strong>
                            <a href="#" class="button button-red center-button">Call</a>
                        </div>
                    </div>

                </div>
            </div> 

To create more slides, simply duplicate the class that has the <!--Duplicate Me--> comment.

After doing so, replace the image and text with your own, and you have a new slide

<div class="content">
    <div class="container">

    </div>
    <div class="decoration"></div>
</div>

The following structure is used in the template. The content class adds a margin left and right to aling the elements perfectly. And the container class adds a margin botton to your sections to keep the visual heirarchy clean.

However, when using content headings, you must close the content class and use the code bellow, then remake the structure above, sicne content headings take the full width of the screen

        <div class="content-heading">
            <h4>Featured Project</h4>
            <p>Check and enjoy our featured item</p>
            <i class="fa fa-star-o"></i>
            <div class="overlay"></div>
            <img src="images/pictures/7w.jpg" alt="img">
        </div>

You can replace the image, the icon, and the text to better describe your section. 

No! We have 2 documentations. This one explained the main features of the template, and it's structure. The second documentation describes the features from each indivudual page. 

If there is anything you don't understand, please send us a message http://enableds.com/html-support/ through our support page and we will gladly assist you with absolutely anything that's related to the template! We take great pride in providing top notch support to all our customers! 

Please don't forget to rate 5 stars!